m4_define([gdk_pixbuf_required_version], [2.30.0])
m4_define([introspection_required_version], [1.39.0])
m4_define([wayland_required_version], [1.9.91])
-m4_define([wayland_protocols_required_version], [1.7])
+m4_define([wayland_protocols_required_version], [1.9])
m4_define([mirclient_required_version], [0.22.0])
m4_define([mircookie_required_version], [0.17.0])
m4_define([epoxy_required_version], [1.0])
gtk-primary-selection-protocol.c \
tablet-unstable-v2-client-protocol.h \
tablet-unstable-v2-protocol.c \
+ keyboard-shortcuts-inhibit-unstable-v1-client-protocol.h \
+ keyboard-shortcuts-inhibit-unstable-v1-protocol.c \
gtk-shell-client-protocol.h \
gtk-shell-protocol.c
if (gdk_device_get_source (device) == GDK_SOURCE_KEYBOARD)
{
/* Device is a keyboard */
+ gdk_wayland_window_inhibit_shortcuts (window,
+ gdk_device_get_seat (device));
return GDK_GRAB_SUCCESS;
}
else
if (gdk_device_get_source (device) == GDK_SOURCE_KEYBOARD)
{
/* Device is a keyboard */
+ if (prev_focus)
+ gdk_wayland_window_restore_shortcuts (prev_focus,
+ gdk_device_get_seat (device));
}
else
{
_gdk_display_get_next_serial (display),
evtime,
FALSE);
+
+ /* Inhibit shortcuts if the seat grab is for the keyboard only */
+ if (capabilities == GDK_SEAT_CAPABILITY_KEYBOARD)
+ gdk_wayland_window_inhibit_shortcuts (window, seat);
}
if (wayland_seat->tablets &&
grab = _gdk_display_get_last_device_grab (display, wayland_seat->master_keyboard);
if (grab)
- grab->serial_end = grab->serial_start;
+ {
+ grab->serial_end = grab->serial_start;
+ if (grab->window)
+ gdk_wayland_window_restore_shortcuts (grab->window, seat);
+ }
}
if (wayland_seat->touch_master)
wl_registry_bind (display_wayland->wl_registry, id,
&zxdg_importer_v1_interface, 1);
}
+ else if (strcmp (interface, "zwp_keyboard_shortcuts_inhibit_manager_v1") == 0)
+ {
+ display_wayland->keyboard_shortcuts_inhibit =
+ wl_registry_bind (display_wayland->wl_registry, id,
+ &zwp_keyboard_shortcuts_inhibit_manager_v1_interface, 1);
+ }
else
handled = FALSE;
#include <gdk/wayland/gtk-shell-client-protocol.h>
#include <gdk/wayland/xdg-shell-unstable-v6-client-protocol.h>
#include <gdk/wayland/xdg-foreign-unstable-v1-client-protocol.h>
+#include <gdk/wayland/keyboard-shortcuts-inhibit-unstable-v1-client-protocol.h>
#include <glib.h>
#include <gdk/gdkkeys.h>
struct zwp_tablet_manager_v2 *tablet_manager;
struct zxdg_exporter_v1 *xdg_exporter;
struct zxdg_importer_v1 *xdg_importer;
+ struct zwp_keyboard_shortcuts_inhibit_manager_v1 *keyboard_shortcuts_inhibit;
GList *async_roundtrips;
struct wl_output *gdk_wayland_window_get_wl_output (GdkWindow *window);
+void gdk_wayland_window_inhibit_shortcuts (GdkWindow *window,
+ GdkSeat *gdk_seat);
+void gdk_wayland_window_restore_shortcuts (GdkWindow *window,
+ GdkSeat *gdk_seat);
+
#endif /* __GDK_PRIVATE_WAYLAND_H__ */
} exported;
struct zxdg_imported_v1 *imported_transient_for;
+ GHashTable *shortcuts_inhibitors;
};
struct _GdkWindowImplWaylandClass
impl = g_object_new (GDK_TYPE_WINDOW_IMPL_WAYLAND, NULL);
window->impl = GDK_WINDOW_IMPL (impl);
impl->wrapper = GDK_WINDOW (window);
+ impl->shortcuts_inhibitors = g_hash_table_new (NULL, NULL);
if (window->width > 65535)
{
g_clear_pointer (&impl->input_region, cairo_region_destroy);
g_clear_pointer (&impl->staged_updates_region, cairo_region_destroy);
+ g_hash_table_destroy (impl->shortcuts_inhibitors);
+
G_OBJECT_CLASS (_gdk_window_impl_wayland_parent_class)->finalize (object);
}
return TRUE;
}
+
+static struct zwp_keyboard_shortcuts_inhibitor_v1 *
+gdk_wayland_window_get_inhibitor (GdkWindowImplWayland *impl,
+ struct wl_seat *seat)
+{
+ return g_hash_table_lookup (impl->shortcuts_inhibitors, seat);
+}
+
+void
+gdk_wayland_window_inhibit_shortcuts (GdkWindow *window,
+ GdkSeat *gdk_seat)
+{
+ GdkWindowImplWayland *impl= GDK_WINDOW_IMPL_WAYLAND (window->impl);
+ GdkWaylandDisplay *display = GDK_WAYLAND_DISPLAY (gdk_window_get_display (window));
+ struct wl_surface *surface = impl->display_server.wl_surface;
+ struct wl_seat *seat = gdk_wayland_seat_get_wl_seat (gdk_seat);
+ struct zwp_keyboard_shortcuts_inhibitor_v1 *inhibitor;
+
+ if (display->keyboard_shortcuts_inhibit == NULL)
+ return;
+
+ if (gdk_wayland_window_get_inhibitor (impl, seat))
+ return; /* Already inhibitted */
+
+ inhibitor =
+ zwp_keyboard_shortcuts_inhibit_manager_v1_inhibit_shortcuts (
+ display->keyboard_shortcuts_inhibit, surface, seat);
+
+ g_hash_table_insert (impl->shortcuts_inhibitors, seat, inhibitor);
+}
+
+void
+gdk_wayland_window_restore_shortcuts (GdkWindow *window,
+ GdkSeat *gdk_seat)
+{
+ GdkWindowImplWayland *impl = GDK_WINDOW_IMPL_WAYLAND (window->impl);
+ struct wl_seat *seat = gdk_wayland_seat_get_wl_seat (gdk_seat);
+ struct zwp_keyboard_shortcuts_inhibitor_v1 *inhibitor;
+
+ inhibitor = gdk_wayland_window_get_inhibitor (impl, seat);
+ if (inhibitor == NULL)
+ return; /* Not inhibitted */
+
+ zwp_keyboard_shortcuts_inhibitor_v1_destroy (inhibitor);
+ g_hash_table_remove (impl->shortcuts_inhibitors, seat);
+}
+